home *** CD-ROM | disk | FTP | other *** search
/ Almathera Ten Pack 3: CDPD 3 / Almathera Ten on Ten - Disc 3: CDPD3.iso / scope / 126-150 / scopedisk131 / diskinfo / ffs.ml < prev    next >
Text File  |  1995-03-19  |  2KB  |  61 lines

  1. /* These sample entries are based on ones provided by Martin Taillefer
  2.  * with his AutoDiskChange program.
  3.  *
  4.  * Entries to mount the normal DF0: and DF1: as FF0: and FF1: for use
  5.  * with FastFileSystem.
  6.  *
  7.  * To use these simply edit your mountlist, or join this file to it.
  8.  * You can safely change the name of the unit (FF0:, etc.) just as long
  9.  * as it is unique.  You may need to change the unit number to match the
  10.  * unit used for the FFS drive.  This number will be the same as in the
  11.  * original drive name.  DF0: is 0, DF1: is 1, and so on.  Units mounted
  12.  * this way will not be available for use until you "wake them up" by
  13.  * doing something such as "CD FF0:" or "DiskChange FF0:", etc.  This
  14.  * means you can't mount the units at a cost of very little ram.  But if
  15.  * you wish to load in the handler ("wake up the unit") at mounting, you
  16.  * can add the line "Mount = 1" to each entry.  It is NOT recommended
  17.  * that you any other values unless you know what you're doing or are
  18.  * looking for interesting ways to crash your Amiga.
  19.  */
  20.  
  21. /* This unit need to be "woken up" */
  22.  
  23. FF0:   Device = trackdisk.device
  24.        FileSystem = l:FastFileSystem
  25.        GlobVec = -1
  26.        Mask = 0x7FFF
  27.        Unit   = 0
  28.        Flags  = 1
  29.        Surfaces  = 2
  30.        BlocksPerTrack = 11
  31.        Reserved = 2
  32.        PreAlloc = 11
  33.        Interleave = 0
  34.        LowCyl = 0  ;  HighCyl = 79
  35.        Buffers = 5
  36.        BufMemType = 3
  37.        DosType = 0x444F5301
  38. #
  39.  
  40.  
  41. /* This unit is immediately available for use due to the Mount value */
  42.  
  43. FF1:   Device = trackdisk.device
  44.        FileSystem = l:FastFileSystem
  45.        GlobVec = -1
  46.        Mask = 0x7FFF
  47.        Unit   = 1
  48.        Flags  = 1
  49.        Surfaces  = 2
  50.        BlocksPerTrack = 11
  51.        Reserved = 2
  52.        PreAlloc = 11
  53.        Interleave = 0
  54.        LowCyl = 0  ;  HighCyl = 79
  55.        Buffers = 5
  56.        BufMemType = 3
  57.        DosType = 0x444F5301
  58.        Mount = 1
  59. #
  60.  
  61.